home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / bbs / bdrag10.zip / BERNICE.PAS < prev    next >
Pascal/Delphi Source File  |  1996-05-17  |  444b  |  26 lines

  1.  
  2. PROGRAM BerniceTheDragon;
  3.  
  4. {$A+,B-,F+,I-,Q-,R-,S-,X+}
  5.  
  6. USES
  7.   Concerto, Errata, IO, RA, Scripts;
  8.  
  9. BEGIN
  10. RegisterConcerto;
  11. RegisterRASysInfo;
  12.  
  13. Let('Application', 'Bernice the Dragon');
  14. Let('Author',      'David Pinch');
  15. Let('Build',       '960517');
  16. Let('Copyright',   'Copyright 1995-1996 David Pinch');
  17. Let('Version',     '1.0');
  18.  
  19. ProtectSourceVars;
  20.  
  21. Script('Init');
  22.  
  23. SO_DisplayFile('BERNICE.ANS');
  24. ExitDoor(0);
  25. END.
  26.